home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / SIMPLEIO.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  630b  |  29 lines

  1.                             /* Chapter 9 - Program 1 - SIMPLEIO.C */
  2. #include "stdio.h"            /* standard header for input/output */
  3.  
  4. void main()
  5. {
  6. char c;
  7.  
  8.    printf("Enter any characters, X = halt program.\n");
  9.  
  10.    do {
  11.       c = getchar();      /* get a single character from the kb   */
  12.       putchar(c);         /* display the character on the monitor */
  13.    } while (c != 'X');    /* until an X is hit                    */
  14.  
  15.    printf("\nEnd of program.\n");
  16. }
  17.  
  18.  
  19.  
  20. /* Result of execution
  21.  
  22. Enter any characters, X = halt program.
  23.  
  24. (The output depends on what you type in.)
  25.  
  26. End of program.
  27.  
  28. */
  29.